Help icon is visible bug fixed from File dropdown #1284

This commit is contained in:
daria 2024-02-20 16:46:18 +02:00
parent 517615463d
commit f5c6fb9c67
7 changed files with 28 additions and 7 deletions

View File

@ -149,7 +149,10 @@ define([
var $helpMenuButton = UIElements.createDropdownEntry({
tag: 'a',
attributes: { 'class': helpMenu.button.attr('class') },
content: h('span', helpMenu.button.text()),
content: [
h('i', { 'class': helpMenu.button.children('i').attr('class') }),
h('span', helpMenu.button.text())
],
action: function () {
helpMenu.button.click();
}

View File

@ -2945,7 +2945,10 @@ Uncaught TypeError: Cannot read property 'calculatedType' of null
var $helpMenuButton = UIElements.createDropdownEntry({
tag: 'a',
attributes: { 'class': helpMenu.button.attr('class') },
content: h('span', helpMenu.button.text()),
content: [
h('i', { 'class': helpMenu.button.children('i').attr('class') }),
h('span', helpMenu.button.text())
],
action: function () {
helpMenu.button.click();
}

View File

@ -4497,7 +4497,10 @@ define([
var $helpMenuButton = UIElements.createDropdownEntry({
tag: 'a',
attributes: { 'class': helpMenu.button.attr('class') },
content: h('span', helpMenu.button.text()),
content: [
h('i', { 'class': helpMenu.button.children('i').attr('class') }),
h('span', helpMenu.button.text())
],
action: function () {
helpMenu.button.click();
}

View File

@ -1082,7 +1082,10 @@ define([
var $helpMenuButton = UIElements.createDropdownEntry({
tag: 'a',
attributes: { 'class': helpMenu.button.attr('class') },
content: h('span', helpMenu.button.text()),
content: [
h('i', { 'class': helpMenu.button.children('i').attr('class') }),
h('span', helpMenu.button.text())
],
action: function () {
helpMenu.button.click();
}

View File

@ -367,7 +367,10 @@ define([
var $helpMenuButton = UIElements.createDropdownEntry({
tag: 'a',
attributes: { 'class': helpMenu.button.attr('class') },
content: h('span', helpMenu.button.text()),
content: [
h('i', { 'class': helpMenu.button.children('i').attr('class') }),
h('span', helpMenu.button.text())
],
action: function () {
helpMenu.button.click();
}

View File

@ -446,7 +446,10 @@ define([
var $helpMenuButton = UIElements.createDropdownEntry({
tag: 'a',
attributes: { 'class': helpMenu.button.attr('class') },
content: h('span', helpMenu.button.text()),
content: [
h('i', { 'class': helpMenu.button.children('i').attr('class') }),
h('span', helpMenu.button.text())
],
action: function () {
helpMenu.button.click();
}

View File

@ -303,7 +303,10 @@ define([
var $helpMenuButton = UIElements.createDropdownEntry({
tag: 'a',
attributes: { 'class': helpMenu.button.attr('class') },
content: h('span', helpMenu.button.text()),
content: [
h('i', { 'class': helpMenu.button.children('i').attr('class') }),
h('span', helpMenu.button.text())
],
action: function () {
helpMenu.button.click();
}