@ -69,13 +69,17 @@
< div class = "my-3" >
< label class = "form-label" >
{ { $t ( "Domain Names" ) } }
< font -awesome -icon icon = "plus-circle" class = "btn-add-domain action text-primary" @click ="addDomainField" / >
< button class = "p-0 bg-transparent border-0" : aria -label = " $ t ( ' Add a domain ' ) " @click ="addDomainField" >
< font -awesome -icon icon = "plus-circle" class = "action text-primary" / >
< / button >
< / label >
< ul class = "list-group domain-name-list" >
< li v-for ="(domain, index) in config.domainNameList" :key="index" class="list-group-item" >
< input v -model = " config.domainNameList [ index ] " type = "text" class = "no-bg domain-input" placeholder = "example.com" / >
< font -awesome -icon icon = "times" class = "action remove ms-2 me-3 text-danger" @click ="removeDomain(index)" / >
< button class = "p-0 bg-transparent border-0" : aria -label = " $ t ( ' Remove domain ' , [ domain ] ) " @click ="removeDomain(index)" >
< font -awesome -icon icon = "times" class = "action remove ms-2 me-3 text-danger" / >
< / button >
< / li >
< / ul >
< / div >