Skip to content

Commit

Permalink
Apply code formatting and fixable ESLint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jleifeld authored and github-actions[bot] committed Dec 20, 2024
1 parent 4875dc2 commit 6f038c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ import Table from "@tiptap/extension-table";
import TableCell from "@tiptap/extension-table-cell";
import TableHeader from "@tiptap/extension-table-header";
import TableRow from "@tiptap/extension-table-row";
import Placeholder from '@tiptap/extension-placeholder'
import Placeholder from "@tiptap/extension-placeholder";
import mtTextEditorToolbar, { type CustomButton } from "./_internal/mt-text-editor-toolbar.vue";
import mtTextEditorToolbarButtonColor, {
colorButton,
Expand Down Expand Up @@ -247,7 +247,7 @@ const props = defineProps({
*
* @example {"code": 500, "detail": "Error while saving"}
*/
error: {
error: {
type: Object,
required: false,
default: null,
Expand All @@ -256,7 +256,7 @@ const props = defineProps({
/**
* A label for your text field. Usually used to guide the user what value this field controls.
*/
label: {
label: {
type: String,
required: false,
default: null,
Expand Down Expand Up @@ -687,5 +687,4 @@ label {
.mt-text-editor--error label {
color: var(--color-text-critical-default);
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export default defineComponent({
return {
id: column.property,
label: column.label,
parentGroup: column.visible ?? true ? "visible" : "hidden",
parentGroup: (column.visible ?? true) ? "visible" : "hidden",
position: column.position,
isVisible: column.visible ?? true,
isHidable: isPrimaryColumn(column) ? false : true,
Expand Down

0 comments on commit 6f038c5

Please sign in to comment.