8000 Fix row number discrepancy in Matter attributes by ethanzhouyc · Pull Request #1401 · project-chip/zap · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix row number discrepancy in Matter attributes #1401

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions src/components/ZclAttributeManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,7 @@ limitations under the License.
id="ZclAttributeManager"
>
<template v-slot:body="props">
<q-tr
:props="props"
class="table_body attribute_table_body"
v-if="!globalLists.includes(props.row.label)"
>
<q-tr :props="props" class="table_body attribute_table_body">
<q-td
key="status"
:props="props"
Expand Down
3 changes: 3 additions & 0 deletions src/util/editable-attributes-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ export default {
.toLowerCase()
.includes(this.individualClusterFilterString.toLowerCase())
})
.filter((attribute) => {
return !this.globalLists.includes(attribute.label)
})
},
},
selection: {
Expand Down
Loading
0