Skip to content

Commit 1fce6bc

Browse files
committed
Fix lint
1 parent a1d966a commit 1fce6bc

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

packages/experiments-realm/phone-number.gts

+9
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ import PhoneIcon from '@cardstack/boxel-icons/phone';
1717
class PhoneNumberTypeEdit extends Component<typeof PhoneNumberType> {
1818
@tracked label: string | undefined = this.args.model.label;
1919

20+
statuses = PhoneNumberType.values;
21+
selectedStatus = this.selected;
22+
placeholder = 'Select phone number type';
23+
24+
@action onSelectStatus(type: LooseyGooseyData): void {
25+
this.onSelect(type);
26+
}
27+
2028
get types() {
2129
return PhoneNumberType.values;
2230
}
@@ -32,6 +40,7 @@ class PhoneNumberTypeEdit extends Component<typeof PhoneNumberType> {
3240
this.args.model.label = this.selected?.label;
3341
this.args.model.index = this.selected?.index;
3442
}
43+
3544
<template>
3645
<RadioInput
3746
@groupDescription='Office, Work, Home '

0 commit comments

Comments
 (0)