mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
remove white space changes
This commit is contained in:
parent
95ce4125ca
commit
870fe52531
3 changed files with 8 additions and 9 deletions
|
|
@ -99,7 +99,7 @@ export const Tabs = function Tabs({
|
|||
const tabId = Number(id);
|
||||
setCurrentTab(tabId);
|
||||
setExposedVariable('currentTab', tabId);
|
||||
fireEvent('onTabSwitch');
|
||||
fireEvent('onTabSwitch')
|
||||
}
|
||||
},
|
||||
currentTab: currentTab,
|
||||
|
|
@ -216,4 +216,4 @@ export const Tabs = function Tabs({
|
|||
))}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
};
|
||||
|
|
@ -462,8 +462,8 @@ export const Inspector = ({
|
|||
componentMeta.displayName === 'Toggle Switch (Legacy)'
|
||||
? 'Toggle (Legacy)'
|
||||
: componentMeta.displayName === 'Toggle Switch'
|
||||
? 'Toggle Switch'
|
||||
: componentMeta.component,
|
||||
? 'Toggle Switch'
|
||||
: componentMeta.component,
|
||||
})}
|
||||
</small>
|
||||
</span>
|
||||
|
|
@ -644,4 +644,4 @@ const GetAccordion = React.memo(
|
|||
}
|
||||
);
|
||||
|
||||
Inspector.RenderStyleOptions = RenderStyleOptions;
|
||||
Inspector.RenderStyleOptions = RenderStyleOptions;
|
||||
|
|
@ -110,9 +110,8 @@ export const LeftSidebarInspector = ({
|
|||
if (!_.isEmpty(component) && component.name === key) {
|
||||
return {
|
||||
iconName: key,
|
||||
iconPath: `assets/images/icons/widgets/${
|
||||
component.component.toLowerCase() === 'radiobutton' ? 'radio-button' : component.component.toLowerCase()
|
||||
}.svg`,
|
||||
iconPath: `assets/images/icons/widgets/${component.component.toLowerCase() === 'radiobutton' ? 'radio-button' : component.component.toLowerCase()
|
||||
}.svg`,
|
||||
className: 'component-icon',
|
||||
};
|
||||
}
|
||||
|
|
@ -312,4 +311,4 @@ export const LeftSidebarInspector = ({
|
|||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
};
|
||||
Loading…
Reference in a new issue