lint compliance

This commit is contained in:
yflory 2024-03-21 16:04:10 +01:00
parent 769a605193
commit e3a9a2793b
3 changed files with 2 additions and 3 deletions

View File

@ -54,7 +54,7 @@
.cp-support-recorded {
white-space: nowrap;
.cp-support-recorded-insert {
margin-right: @sidebar_base-margin
margin-right: @sidebar_base-margin;
}
}
@ticket-padding: 10px;

View File

@ -698,7 +698,6 @@ define([
console.error(obj.error);
return void UI.warn(Messages.error);
}
let lines = [];
let messages = obj.messages;
$list.empty();
Object.keys(messages).forEach(id => {

View File

@ -261,7 +261,7 @@ define([
};
let overflow = false;
let maxWidth = $recorded.width();
Object.keys(all).sort(sort).forEach((id, i) => {
Object.keys(all).sort(sort).forEach(id => {
let action = () => {
insertText(all[id].content);
if (typeof(recorded.onClick) === "function") { recorded.onClick(id); }