Merge branch 'master' of github.com:thingsboard/thingsboard
This commit is contained in:
		
						commit
						940c81b095
					
				@ -518,7 +518,7 @@ class DeviceActorMessageProcessor extends AbstractContextAwareMsgProcessor {
 | 
			
		||||
            String payload = hasError ? responseMsg.getError() : responseMsg.getPayload();
 | 
			
		||||
            systemContext.getTbCoreDeviceRpcService().processRpcResponseFromDeviceActor(
 | 
			
		||||
                    new FromDeviceRpcResponse(requestMd.getMsg().getMsg().getId(),
 | 
			
		||||
                            payload, hasError ? RpcError.INTERNAL : null));
 | 
			
		||||
                            payload, null));
 | 
			
		||||
            if (requestMd.getMsg().getMsg().isPersisted()) {
 | 
			
		||||
                RpcStatus status = hasError ? RpcStatus.FAILED : RpcStatus.SUCCESSFUL;
 | 
			
		||||
                JsonNode response;
 | 
			
		||||
 | 
			
		||||
@ -495,8 +495,8 @@ export class MultipleInputWidgetComponent extends PageComponent implements OnIni
 | 
			
		||||
      const serverAttributes: AttributeData[] = [];
 | 
			
		||||
      const sharedAttributes: AttributeData[] = [];
 | 
			
		||||
      const telemetry: AttributeData[] = [];
 | 
			
		||||
      for (const key of this.visibleKeys(toSave)) {
 | 
			
		||||
        const currentValue = this.multipleInputFormGroup.get(key.formId).value;
 | 
			
		||||
      for (const key of toSave.keys) {
 | 
			
		||||
        const currentValue = key.settings.dataKeyHidden ? key.value : this.multipleInputFormGroup.get(key.formId).value;
 | 
			
		||||
        if (!isEqual(currentValue, key.value) || this.settings.updateAllValues) {
 | 
			
		||||
          const attribute: AttributeData = {
 | 
			
		||||
            key: key.name,
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user