Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
synergy-components
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
community
synergy-components
Commits
0508e347
Commit
0508e347
authored
Dec 19, 2025
by
Samir Sadyhov
🤔
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
компонент меню с кнопкой создать - bugfix избранное
parent
99b9de65
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
constructor/scripts/QuickAccessMenu/QuickAccessMenu.js
constructor/scripts/QuickAccessMenu/QuickAccessMenu.js
+4
-4
No files found.
constructor/scripts/QuickAccessMenu/QuickAccessMenu.js
View file @
0508e347
...
...
@@ -81,11 +81,11 @@ const favoritesInit = (items, successHandler) => {
const
renderFavoritesItem
=
listItems
=>
{
for
(
let
i
=
0
;
i
<
listItems
.
length
;
i
++
)
{
const
item
=
listItems
[
i
];
const
itemT
itle
=
getItemTitle
(
item
);
const
t
itle
=
getItemTitle
(
item
);
if
(
item
.
is_group
==
1
)
{
const
d
=
$
(
'
<div>
'
,
{
class
:
"
favorites_group
"
});
d
.
text
(
itemT
itle
);
d
.
text
(
t
itle
);
d
.
attr
(
'
menu_itemID
'
,
item
.
menu_itemID
);
itemsContainer
.
append
(
d
);
renderFavoritesItem
(
item
.
items
);
...
...
@@ -104,9 +104,9 @@ const favoritesInit = (items, successHandler) => {
d
.
attr
(
'
menu_itemID
'
,
item
.
menu_itemID
);
itemTitle
.
text
(
itemT
itle
);
itemTitle
.
text
(
t
itle
);
itemIcon
.
append
(
`<span uk-icon="icon: star"></span>`
);
d
.
append
(
itemIcon
,
itemT
itle
);
d
.
append
(
itemIcon
,
t
itle
);
itemsContainer
.
append
(
d
);
d
.
on
(
'
click
'
,
e
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment