Browse Source

Update story

pull/332/head
Thomas 4 years ago
parent
commit
a08b326ee7
  1. 6
      libs/ui/src/lib/value/value.component.stories.ts

6
libs/ui/src/lib/value/value.component.stories.ts

@ -25,14 +25,14 @@ Loading.args = {
export const Currency = Template.bind({}); export const Currency = Template.bind({});
Currency.args = { Currency.args = {
currency: 'USD', currency: 'USD',
locale: 'en', locale: 'en-US',
value: 7 value: 7
}; };
export const Integer = Template.bind({}); export const Integer = Template.bind({});
Integer.args = { Integer.args = {
isInteger: true, isInteger: true,
locale: 'en', locale: 'en-US',
value: 7 value: 7
}; };
@ -40,6 +40,6 @@ export const Label = Template.bind({});
Label.args = { Label.args = {
isInteger: true, isInteger: true,
label: 'Label', label: 'Label',
locale: 'en', locale: 'en-US',
value: 7 value: 7
}; };

Loading…
Cancel
Save