storybook(WalletAccountModel): Updated according to new `colorId` role

`Storybook` updated according to new `colorId` role.
This commit is contained in:
Noelia 2023-06-09 11:58:53 +02:00 committed by Noelia
parent f6223a1559
commit f227a92cf1
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import QtQuick 2.15
ListModel {
ListElement { name: "Test account"; emoji: "😋"; color: "red"; address: "0x7F47C2e18a4BBf5487E6fb082eC2D9Ab0E6d7240" }
ListElement { name: "Another account"; emoji: "🚗"; color: "blue"; address: "0x7F47C2e98a4BBf5487E6fb082eC2D9Ab0E6d8888" }
ListElement { name: "Test account"; emoji: "😋"; colorId: "primary"; address: "0x7F47C2e18a4BBf5487E6fb082eC2D9Ab0E6d7240" }
ListElement { name: "Another account"; emoji: "🚗"; colorId: "army"; address: "0x7F47C2e98a4BBf5487E6fb082eC2D9Ab0E6d8888" }
}