0
0
Fork 0

refactor: refs #7354 changed icon color in table and notification when deleting a zone

This commit is contained in:
Jon Elias 2024-09-02 12:49:15 +02:00
parent 8903aabddf
commit 709f434e5d
2 changed files with 1 additions and 5 deletions

View File

@ -30,11 +30,6 @@ const actions = {
await axios.post(`Zones/${zoneId}/deleteZone`);
notify({ message: t('Zone deleted'), type: 'positive' });
notify({
message: t('You can undo this action within the first hour'),
icon: 'info',
});
push({ name: 'ZoneList' });
} catch (e) {
notify({ message: e.message, type: 'negative' });

View File

@ -106,6 +106,7 @@ const columns = computed(() => [
title: t('list.zoneSummary'),
icon: 'preview',
action: (row) => viewSummary(row.id, ZoneSummary),
isPrimary: true,
},
{
title: t('globals.clone'),