Button label updates

This commit is contained in:
Sudheer Salavadi 2024-07-08 15:00:46 +05:30
parent fa0276c1b2
commit 2a39b4e0e3
2 changed files with 2 additions and 9 deletions

View file

@ -90,7 +90,7 @@ function CreateCard(props: Props) {
</Space>
<Button type="primary" onClick={createDashboardAndAddCard}>
<Space>
Create Dashboard <ArrowRight size={14}/>
Create <ArrowRight size={14}/>
</Space>
</Button>
</div>

View file

@ -48,17 +48,10 @@ export default observer(WidgetFormNew);
function DefineSteps({ metric, excludeFilterKeys }: any) {
return (
<Card
styles={{
body: { padding: '0' },
cover: {}
}}
>
<div className="px-4 py-2 rounded-lg shadow-sm flex items-center">
<div className="px-4 py-2 bg-white rounded-lg shadow-sm flex items-center">
<Typography.Text strong>Filter</Typography.Text>
<AddStepButton excludeFilterKeys={excludeFilterKeys} series={metric.series[0]} />
</div>
</Card>
);
}