-
Notifications
You must be signed in to change notification settings - Fork 82
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
Duplicate Endpoint #695
Duplicate Endpoint #695
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src-electron/db/query-config.js
Outdated
@@ -20,1160 +20,1202 @@ | |||
* | |||
* @module DB API: user configuration queries against the database. | |||
*/ | |||
const dbApi = require('./db-api.js') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The whole file seem to have changed and makes it very difficult to actually review the changes.
Can you fix this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src-electron/rest/user-data.js
Outdated
@@ -20,744 +20,789 @@ | |||
* | |||
* @module REST API: user data | |||
*/ | |||
const fs = require('fs') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The whole file seem to have changed and makes it very difficult to actually review the changes.
Can you fix this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
src/store/zap/actions.js
Outdated
@@ -14,803 +14,820 @@ | |||
* See the License for the specific language governing permissions and | |||
* limitations under the License. | |||
*/ | |||
import Vue from 'vue' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The whole file seem to have changed and makes it very difficult to actually review the changes.
Can you fix this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
src/util/common-mixin.js
Outdated
@@ -15,198 +15,215 @@ | |||
* limitations under the License. | |||
*/ | |||
|
|||
import * as Util from './util' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The whole file seem to have changed and makes it very difficult to actually review the changes.
Can you fix this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
0f632ff
to
11501dc
Compare
fd24b1a
to
87a05b4
Compare
src-electron/rest/user-data.js
Outdated
attrubute) | ||
}) | ||
}) | ||
} catch (err) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of catching the error here, the exception should just bubble to httpPostDuplicateEndpointType() and the error should be printed / responded there. otherwise httpPostDuplicateEndpointType() would just fail silently.
src/components/ZclEndpointCard.vue
Outdated
@@ -394,8 +427,9 @@ export default { | |||
}, | |||
created() { | |||
if (this.$serverGet != null) { | |||
this.selectedAttributes= [] | |||
this.selectedReporting =[] | |||
this.selectedservers = [] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo selectedservers?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
* chore: resolve conflicts * chore: clean space * chore: resolving conflict * fix: fix duplicate issue after rebase * chore: fix typo issue and remove catch for duplicate function Co-authored-by: A.ghasemkhani <a.ghasemkhaniii@gmail.com>
#528