Skip to content

Commit af94876

Browse files
committed
Fix missing attribute labels in Image > Attributes dialog
Broken in 22bd88e851e1c I mistakenly commented this out to avoid a lint error about an unused variable, apparently ignoring the side effect that this line has.
1 parent 7849f75 commit af94876

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/functions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3161,7 +3161,7 @@ function image_attributes() {
31613161
const $table = $(E("table")).appendTo($main);
31623162
for (const k in table) {
31633163
const $tr = $(E("tr")).appendTo($table);
3164-
// const $key = $(E("td")).appendTo($tr).text(k);
3164+
$(E("td")).appendTo($tr).text(k);
31653165
const $value = $(E("td")).appendTo($tr).text(table[k]);
31663166
if (table[k].indexOf("72") !== -1) {
31673167
$value.css("direction", "ltr");

0 commit comments

Comments
 (0)