Skip to content

Commit 09135a2

Browse files
committed
fix(Tenant): add ellipsis to menu items inserting queries
1 parent 991f156 commit 09135a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/containers/Tenant/utils/schemaActions.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,17 +114,17 @@ export const getActions = (
114114
copyItem,
115115
],
116116
[
117-
{text: 'Alter table', action: onAlterTableClick},
118-
{text: 'Select query', action: onSelectQueryClick},
119-
{text: 'Upsert query', action: onUpsertQueryClick},
117+
{text: 'Alter table...', action: onAlterTableClick},
118+
{text: 'Select query...', action: onSelectQueryClick},
119+
{text: 'Upsert query...', action: onUpsertQueryClick},
120120
],
121121
]
122122
: [
123123
[
124124
copyItem,
125125
],
126126
[
127-
{text: 'Create table', action: onCreateTableClick},
127+
{text: 'Create table...', action: onCreateTableClick},
128128
],
129129
];
130130
};

0 commit comments

Comments
 (0)