Skip to content

Commit 99483aa

Browse files
authored
Merge pull request #2554 from jpevarnek/instance-no-hidden
Remove hidden attribute from wrapper div in instance
2 parents a77d3a1 + 157b24c commit 99483aa

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/generic_ui/polymer/instance.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@
5454
}
5555
</style>
5656

57-
<div id='wrapper' class='{{ instance.isOnline ? "online" : "offline" }}'
58-
hidden?='{{model.globalSettings.mode!=ui_constants.Mode.GET}}'>
57+
<div id='wrapper' class='{{ instance.isOnline ? "online" : "offline" }}'>
5958
<p id='description' hidden?='{{ !instance.description }}'>
6059
<bdi style='display:inline'>{{ instance.description }}</bdi>
6160
<span class='verified'

src/generic_ui/polymer/instance.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ Polymer({
2626
this.ui = ui;
2727
this.ui_constants = ui_constants;
2828
this.GettingState = social.GettingState;
29-
this.model = model;
3029
this.sas = null;
3130
// Whether this is the side that started verification. The sides
3231
// of the verification show different UIs.

0 commit comments

Comments
 (0)