Skip to content

Commit

Permalink
Fix CS v3.14.0 (#1982)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Jan 30, 2023
1 parent d86b13b commit d40d047
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion js/src/plugins/file-upload.plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export default class AtkFileUploadPlugin extends AtkPlugin {
* @returns {string}
*/
getEraseContent() {
return '<i class="red remove icon" style=""></i>';
return '<i class="red remove icon"></i>';
}
}

Expand Down
2 changes: 1 addition & 1 deletion public/js/atkjs-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -945,7 +945,7 @@ class AtkFileUploadPlugin extends _atk_plugin__WEBPACK_IMPORTED_MODULE_5__["defa
* @returns {string}
*/
getEraseContent() {
return '<i class="red remove icon" style=""></i>';
return '<i class="red remove icon"></i>';
}
}
AtkFileUploadPlugin.DEFAULTS = {
Expand Down
2 changes: 1 addition & 1 deletion public/js/atkjs-ui.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/atkjs-ui.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/atkjs-ui.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/GridLayout.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ protected function buildTemplate(): void
};
$cloneTagTreeFx($tmp->getTagTree('rows'));

// TODO prune unreachable nodes
// $template->rebuildTagsIndex();
// TODO prune unreachable nodes
// $template->rebuildTagsIndex();
}, null, HtmlTemplate::class)();

$this->addClass($this->cssWideClasses[$this->columns] . ' column');
Expand Down

0 comments on commit d40d047

Please sign in to comment.