File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/controls/modernTaxonomyPicker/taxonomyPanelContents Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ import { useForceUpdate } from '@uifabric/react-hooks';
48
48
import { ModernTermPicker } from '../modernTermPicker/ModernTermPicker' ;
49
49
import { IReadonlyTheme } from "@microsoft/sp-component-base" ;
50
50
51
- export interface ITaxonomyFormProps {
51
+ export interface ITaxonomyPanelContentsProps {
52
52
context : BaseComponentContext ;
53
53
allowMultipleSelections ?: boolean ;
54
54
termSetId : Guid ;
@@ -68,7 +68,7 @@ export interface ITaxonomyFormProps {
68
68
themeVariant ?: IReadonlyTheme ;
69
69
}
70
70
71
- export function TaxonomyPanelContents ( props : ITaxonomyFormProps ) : React . ReactElement < ITaxonomyFormProps > {
71
+ export function TaxonomyPanelContents ( props : ITaxonomyPanelContentsProps ) : React . ReactElement < ITaxonomyPanelContentsProps > {
72
72
const [ groupsLoading , setGroupsLoading ] = React . useState < string [ ] > ( [ ] ) ;
73
73
const [ groups , setGroups ] = React . useState < IGroup [ ] > ( [ ] ) ;
74
74
const [ terms , setTerms ] = React . useState < ITermInfo [ ] > ( props . selectedPanelOptions ?. length > 0 ? [ ...props . selectedPanelOptions ] : [ ] ) ;
You can’t perform that action at this time.
0 commit comments