Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
cfe080e4
authored
Dec 05, 2024
by
CalciumIon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 标签分组功能开启时无法展开测试模型
parent
270857e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
web/src/components/ChannelsTable.js
+11
-11
No files found.
web/src/components/ChannelsTable.js
View file @
cfe080e4
...
...
@@ -470,18 +470,18 @@ const ChannelsTable = () => {
let
channelTags
=
{};
for
(
let
i
=
0
;
i
<
channels
.
length
;
i
++
)
{
channels
[
i
].
key
=
''
+
channels
[
i
].
id
;
if
(
!
enableTagMode
)
{
let
test_models
=
[];
channels
[
i
].
models
.
split
(
','
).
forEach
((
item
,
index
)
=>
{
test_models
.
push
({
node
:
'item'
,
name
:
item
,
onClick
:
()
=>
{
testChannel
(
channels
[
i
],
item
);
}
});
let
test_models
=
[];
channels
[
i
].
models
.
split
(
','
).
forEach
((
item
,
index
)
=>
{
test_models
.
push
({
node
:
'item'
,
name
:
item
,
onClick
:
()
=>
{
testChannel
(
channels
[
i
],
item
);
}
});
channels
[
i
].
test_models
=
test_models
;
});
channels
[
i
].
test_models
=
test_models
;
if
(
!
enableTagMode
)
{
channelDates
.
push
(
channels
[
i
]);
}
else
{
let
tag
=
channels
[
i
].
tag
;
...
...
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