Skip to content

Commit 32d6915

Browse files
committed
Return description in the any formatter when possible
1 parent 9c0b553 commit 32d6915

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/opnsense/mvc/app/views/OPNsense/Firewall/dnat_rule.volt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@
196196
row[column.id] !== 'any' &&
197197
row[column.id] !== 'None'
198198
) {
199-
return row[column.id];
199+
return row[`%${column.id}`] || row[column.id];
200200
} else {
201201
return '*';
202202
}

0 commit comments

Comments
 (0)