Skip to content

Commit 5198556

Browse files
Fix format
1 parent 2e2817b commit 5198556

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

catalog/src/components/copy-code-button.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
import '@material/web/icon/icon.js';
88
import '@material/web/iconbutton/icon-button.js';
99

10-
import { MdIconButton } from '@material/web/iconbutton/icon-button.js';
11-
import { css, html, LitElement } from 'lit';
10+
import {MdIconButton} from '@material/web/iconbutton/icon-button.js';
11+
import {css, html, LitElement} from 'lit';
1212
import {
1313
customElement,
1414
property,
@@ -56,16 +56,16 @@ export class CopyCodeButton extends LitElement {
5656
* The aria label for the copy button when it has been clicked and the copy is
5757
* successul.
5858
*/
59-
@property({ attribute: 'success-label' }) successLabel = 'Copy successful';
59+
@property({attribute: 'success-label'}) successLabel = 'Copy successful';
6060

6161
/**
6262
* The title to be set on the copy button.
6363
*/
64-
@property({ attribute: 'button-title' }) buttonTitle = 'Copy code';
64+
@property({attribute: 'button-title'}) buttonTitle = 'Copy code';
6565

6666
@query('md-icon-button') private copyButton!: MdIconButton;
6767

68-
@queryAssignedElements({ flatten: true, selector: '*' })
68+
@queryAssignedElements({flatten: true, selector: '*'})
6969
private slottedEls!: NodeListOf<HTMLElement>;
7070

7171
render() {

0 commit comments

Comments
 (0)