Просмотр исходного кода

made clashing key labels more concise

xetera 4 лет назад
Родитель
Сommit
388bfc7a0d
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      dashboard/src/main/home/modals/LoadEnvGroupModal.tsx

+ 2 - 2
dashboard/src/main/home/modals/LoadEnvGroupModal.tsx

@@ -128,11 +128,11 @@ export default class LoadEnvGroupModal extends Component<PropsType, StateType> {
               <b>{key}</b> is defined in both environments
             </ClashingKeyTitle>
             <ClashingKeyDefinitions>
-              <ClashingKeyLabel>Defined as</ClashingKeyLabel>
+              <ClashingKeyLabel>Old</ClashingKeyLabel>
               <ClashingKeyValue>
                 {this.props.existingValues[key] || emptyValue}
               </ClashingKeyValue>
-              <ClashingKeyLabel>Replaced by</ClashingKeyLabel>
+              <ClashingKeyLabel>New</ClashingKeyLabel>
               <ClashingKeyValue>
                 {formattedEnvironmentValue(value) || emptyValue}
               </ClashingKeyValue>