Skip to content

Commit e3af3b0

Browse files
committed
[IMP] standaloneComposer: show invalid border when invalid
Task: 4645937
1 parent 3cd5eee commit e3af3b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/composer/standalone_composer/standalone_composer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export class StandaloneComposer extends Component<Props, SpreadsheetChildEnv> {
9494
get containerClass(): string {
9595
const classes = [
9696
this.focus === "inactive" ? "" : "active",
97-
this.props.invalid ? "o-invalid" : "",
97+
this.props.invalid ? "o-invalid" : "border-bottom",
9898
this.props.class || "",
9999
];
100100
return classes.join(" ");

src/components/composer/standalone_composer/standalone_composer.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<templates>
22
<t t-name="o-spreadsheet-StandaloneComposer">
33
<div
4-
class="o-standalone-composer border-bottom"
4+
class="o-standalone-composer"
55
t-on-click.stop=""
66
t-att-class="containerClass"
77
t-att-title="props.title">

0 commit comments

Comments
 (0)