Skip to content

Commit

Permalink
style: remove extra ;
Browse files Browse the repository at this point in the history
  • Loading branch information
juzhiyuan committed Dec 14, 2020
1 parent 74445ed commit 569dc12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/Plugin/PluginPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const PluginPage: React.FC<Props> = ({
const validateData = (pluginName: string, value: PluginComponent.Data) => {
fetchSchema(pluginName, schemaType).then((schema) => {
if (schema.oneOf) {
;(schema.oneOf || []).forEach((item: any) => {
(schema.oneOf || []).forEach((item: any) => {
injectDisableProperty(item);
});
} else {
Expand Down

0 comments on commit 569dc12

Please sign in to comment.