Skip to content

Commit

Permalink
Fix color not working
Browse files Browse the repository at this point in the history
  • Loading branch information
Duddino committed Oct 10, 2024
1 parent a5f16e3 commit 5fb6870
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/dashboard/TransferMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ const props = defineProps({
const address = defineModel('address');
watch(address, () => getAddressColor(value).then((c) => (color.value = c)));
watch(address, (value) =>
getAddressColor(value).then((c) => (color.value = `${c} !important`))
);
const amount = defineModel('amount', {
set(value) {
Expand Down

0 comments on commit 5fb6870

Please sign in to comment.