Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
switschel committed Mar 25, 2024
2 parents 3360db2 + 8c2d2fa commit 3cf30ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class ConnectorRegistry {

// Structure: Tenant, <Connector Ident, ConnectorInstance>
protected HashMap<String, HashMap<String, AConnectorClient>> connectorTenantMap = new HashMap<>();
// Structure: ConnectorId, <Property, PropertyDefinition>
// Structure: ConnectorType, <Property, PropertyDefinition>
protected Map<ConnectorType, ConnectorSpecification> connectorSpecificationMap = new HashMap<>();

public void registerConnector(ConnectorType connectorType, ConnectorSpecification specification) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ import { CellRendererContext } from '@c8y/ngx-components';
@Component({
encapsulation: ViewEncapsulation.None,
template: `
<span [title]="context.item.active">
<span [title]="context.value">
<i
style="text-align:center; width: 100%;"
[c8yIcon]="!context.value ? 'circle-o' : 'plus-circle-o'"
[c8yIcon]="context.value ? 'toggle-on': 'toggle-off'"
class="m-r-5"
></i>
</span>
Expand Down

0 comments on commit 3cf30ec

Please sign in to comment.