File tree 1 file changed +9
-0
lines changed
packages/experiments-realm
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,14 @@ import PhoneIcon from '@cardstack/boxel-icons/phone';
17
17
class PhoneNumberTypeEdit extends Component <typeof PhoneNumberType > {
18
18
@tracked label: string | undefined = this .args .model .label ;
19
19
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
+
20
28
get types() {
21
29
return PhoneNumberType .values ;
22
30
}
@@ -32,6 +40,7 @@ class PhoneNumberTypeEdit extends Component<typeof PhoneNumberType> {
32
40
this .args .model .label = this .selected ?.label ;
33
41
this .args .model .index = this .selected ?.index ;
34
42
}
43
+
35
44
<template >
36
45
<RadioInput
37
46
@ groupDescription =' Office, Work, Home '
You can’t perform that action at this time.
0 commit comments