Skip to content

Commit

Permalink
fix: remove v-html from CLM modal (#740)
Browse files Browse the repository at this point in the history
* fix: remove v-html usage

* chore: format code

* fix: reduce max-width of initialize cluster page
  • Loading branch information
andre8244 authored Oct 29, 2024
1 parent 8924ace commit c4b84fa
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@
:invalid-message="error.tenant"
>
<template slot="tooltip">
<span
v-html="$t('cloud_log_manager_forwarder.tenant_tooltip')"
></span>
<span>{{ $t("cloud_log_manager_forwarder.tenant_tooltip") }}</span>
</template>
</NsTextInput>
<div v-if="toggleEnabled && this.configuration.last_timestamp != ''">
Expand Down
2 changes: 1 addition & 1 deletion core/ui/src/components/software-center/AppList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ export default {
},
showSoftwareCenterCoreApps() {
this.$router.push("/software-center/SoftwareCenterCoreApps");
}
},
},
};
</script>
Expand Down
2 changes: 1 addition & 1 deletion core/ui/src/views/InitializeCluster.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1899,7 +1899,7 @@ export default {
@import "../styles/carbon-utils";

.welcome-grid {
max-width: 70rem;
max-width: 56rem;
}

.bx--form .bx--form-item {
Expand Down
2 changes: 1 addition & 1 deletion core/ui/src/views/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div>
<div class="bx--grid bx--grid--full-width login-bg">
<div class="bx--row">
<div class="bx--offset-md-1 bx--col-md-6 bx--offset-lg-4 bx--col-lg-8">
<div class="bx--offset-md-1 bx--col-md-6 bx--offset-lg-4 bx--col-lg-8 bx--col-xlg-6 bx--offset-xlg-5">
<div class="test">
<cv-tile :light="true" class="login-tile">
<h2 class="login-title">{{ $t("login.title") }}</h2>
Expand Down
1 change: 0 additions & 1 deletion core/ui/src/views/SoftwareCenterCoreApps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,6 @@ export default {
showAppInfo(app) {
this.appInfo.isShown = true;
this.appInfo.app = app;

},
updateTableData() {
this.tableColumns = this.isCoreUpdatable
Expand Down

0 comments on commit c4b84fa

Please sign in to comment.