Skip to content

Commit a22285a

Browse files
committed
[IMP] awesome_owl: apply PR suggestions
1 parent dc2211e commit a22285a

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

awesome_owl/static/src/card/card.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ export class Card extends Component {
88
this.title = this.props.title;
99
this.content = this.props.content;
1010
}
11-
}
11+
}

awesome_owl/static/src/card/card.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<div class="card-body">
77
<h5 class="card-title"><t t-esc="this.title"/></h5>
88
<p class="card-text">
9-
<t t-out="this.content"/>
9+
<t t-out="this.content"/>
1010
</p>
1111
</div>
1212
</div>
1313
</t>
1414

15-
</templates>
15+
</templates>

awesome_owl/static/src/counter/counter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ export class Counter extends Component {
1515
this.props.side_effect ? this.props.side_effect() : true;
1616
this.state.value++;
1717
}
18-
}
18+
}

awesome_owl/static/src/counter/counter.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
</div>
99
</t>
1010

11-
</templates>
11+
</templates>

awesome_owl/static/src/todo_list/todo_item.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ export class TodoItem extends Component {
77
setup() {
88
this.todo = useState(this.props.todo)
99
}
10-
}
10+
}

awesome_owl/static/src/todo_list/todo_item.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
</div>
1010
</t>
1111

12-
</templates>
12+
</templates>

awesome_owl/static/src/todo_list/todo_list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ export class TodoList extends Component {
88
setup() {
99
this.todos = useState([{ id: 3, description: "buy milk", isCompleted: false }]);
1010
}
11-
}
11+
}

awesome_owl/static/src/todo_list/todo_list.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
</div>
1212
</t>
1313

14-
</templates>
14+
</templates>

0 commit comments

Comments
 (0)