Skip to content

Commit

Permalink
Fixed type error preventing build
Browse files Browse the repository at this point in the history
  • Loading branch information
allomanta committed Oct 23, 2024
1 parent c8c4bb0 commit e531875
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import { SearchOutlined } from '@ant-design/icons';
import { Button, Input, Space, type InputRef, type TableColumnType } from 'antd';
import type { FilterDropdownProps } from 'antd/lib/table/interface';
import { useRef, useState } from 'react';
import type { TableData } from './studentoverview';
import type { CommonData } from './common-table';
import Highlighter from 'react-highlight-words';

type DataType = keyof TableData;
type DataType = keyof CommonData;

export const useAntFilterDropdown = (dataIndex: DataType): TableColumnType<DataType> => {
const [searchText, setSearchText] = useState('');
Expand Down
4 changes: 2 additions & 2 deletions charts/iguideme/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: iguideme
description: IguideME
type: application
version: 0.3.226
appVersion: "0.3.226"
version: 0.3.227
appVersion: "0.3.227"

0 comments on commit e531875

Please sign in to comment.