fix: icon

This commit is contained in:
puriphatt 2024-08-09 06:18:26 +00:00
parent e38c76e7d3
commit d5698e9454
4 changed files with 10 additions and 8 deletions

View file

@ -715,7 +715,8 @@ async function triggerChangeStatus(
return await new Promise((resolve, reject) => {
dialog({
color: status !== 'INACTIVE' ? 'warning' : 'info',
icon: status !== 'INACTIVE' ? 'mdi-alert' : 'mdi-comment-alert',
icon:
status !== 'INACTIVE' ? 'mdi-alert' : 'mdi-message-processing-outline',
title: t('confirmChangeStatusTitle'),
actionText:
status !== 'INACTIVE' ? t('switchOffLabel') : t('switchOnLabel'),