Skip to content

Commit 64dbad0

Browse files
committed
Fix highlight of signals in ship list and force formatting same as summary
1 parent f88f6f4 commit 64dbad0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ADBOS/Display.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ sub ship($$$)
337337
all => $all,
338338
user => $user,
339339
tasks => \@tasks,
340-
period => ($period // 1),
340+
period => ($period || 1),
341341
title => $title
342342
};
343343

templates/ships.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h1>[% ship.name | html_entity %]</h1>
3232
<p>Showing only extant and recently rectified OPDEFs. (<a href="?all=1">Show
3333
all OPDEFs</a>.)</p>
3434
[% END %]
35-
<table>
35+
<table class="opdeflist">
3636
[% FOREACH opdef IN opdefs %]
3737

3838
[% IF opdef.modified.epoch > time - 86400 * period %]

0 commit comments

Comments
 (0)