Skip to content

Commit

Permalink
fix(sonar): took down minor sonar warning
Browse files Browse the repository at this point in the history
  • Loading branch information
CorentinTh committed Jun 18, 2023
1 parent ebfb872 commit 4cbd7ac
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/tools/json-viewer/json.models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function sortObjectKeys<T>(obj: T): T {
}

return Object.keys(obj)
.sort()
.sort((a, b) => a.localeCompare(b))
.reduce((sortedObj, key) => {
sortedObj[key] = sortObjectKeys((obj as Record<string, unknown>)[key]);
return sortedObj;
Expand Down
2 changes: 0 additions & 2 deletions src/ui/c-input-text/c-input-text.vue
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@ const htmlInputType = computed(() => {
}
& > .label {
flex-shrink: 0;
margin-bottom: 5px;
flex: 0 0 v-bind('labelWidth');
text-align: v-bind('labelAlign');
Expand Down Expand Up @@ -254,7 +253,6 @@ const htmlInputType = computed(() => {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background-color: transparent;
border: none;
color: v-bind('appTheme.text.baseColor');
Expand Down

1 comment on commit 4cbd7ac

@vercel
Copy link

@vercel vercel bot commented on 4cbd7ac Jun 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

it-tools – ./

it-tools-ctmsst.vercel.app
it-tools-git-main-ctmsst.vercel.app
it-tools.vercel.app
it-tools.tech

Please sign in to comment.