Changeset - 0a11698fecc4
[Not reviewed]
default
0 2 0
drewp@bigasterisk.com - 20 months ago 2023-05-30 06:37:08
drewp@bigasterisk.com
2 files changed with 4 insertions and 3 deletions:
0 comments (0 inline, 0 general)
light9/homepage/ServiceButtonRow.ts
Show inline comments
 
@@ -5,7 +5,7 @@ export { StatsLine } from "./StatsLine";
 
@customElement("service-button-row")
 
export class ServiceButtonRow extends LitElement {
 
  @property() name: string = "?";
 
  @property({ attribute: "metrics" }) hasMetrics: boolean = false;
 
  @property({ type:Boolean, attribute: "metrics" }) hasMetrics: boolean = false;
 
  static styles = [
 
    css`
 
      :host {
light9/web/ResourceDisplay.ts
Show inline comments
 
@@ -76,8 +76,9 @@ export class ResourceDisplay extends Lit
 
  @property() uri?: NamedNode | string;
 

	
 
  @state() label: string = "";
 
  @property() rename: boolean = false;
 
  @property() minor: boolean = false;
 
  
 
  @property({type: Boolean}) rename: boolean = false;
 
  @property({type: Boolean}) minor: boolean = false;
 
  // @state() renameTo: String; notify: true };
 

	
 
  constructor() {
0 comments (0 inline, 0 general)