@mundogamernetwork/shared-ui 1.1.81 → 1.1.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -215,7 +215,7 @@ function goBack() {
|
|
|
215
215
|
<label class="label">{{ $t("keys.campaigns.region") }}</label>
|
|
216
216
|
<select v-model.number="selectedRegionId" class="select">
|
|
217
217
|
<option :value="null" disabled>{{ $t("keys.campaigns.select_option") }}</option>
|
|
218
|
-
<option v-for="r in regions" :key="r.id" :value="r.id">{{ r.name }}</option>
|
|
218
|
+
<option v-for="r in regions" :key="r.id" :value="r.id">{{ r.name || r.localized_name }}</option>
|
|
219
219
|
</select>
|
|
220
220
|
</div>
|
|
221
221
|
|
|
@@ -407,9 +407,9 @@ function goBack() {
|
|
|
407
407
|
|
|
408
408
|
.select, .input, .textarea {
|
|
409
409
|
width: 100%;
|
|
410
|
-
background:
|
|
411
|
-
border: 1px solid
|
|
412
|
-
color: var(--
|
|
410
|
+
background-color: transparent;
|
|
411
|
+
border: 1px solid rgba(128, 128, 128, 0.46);
|
|
412
|
+
color: var(--secondary-info-fg);
|
|
413
413
|
font-size: 13px;
|
|
414
414
|
padding: 10px 12px;
|
|
415
415
|
outline: none;
|