Skip to content

Commit

Permalink
break: remove ariaLabel property (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak authored Nov 24, 2021
1 parent 206cf00 commit 69c5cbd
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/my-map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,6 @@ export class MyMap extends LitElement {
@property({ type: String })
areaUnit: AreaUnitEnum = "m2";

@property({ type: String })
ariaLabel = "Interactive map";

@property({ type: Boolean })
showScale = false;

Expand Down Expand Up @@ -418,7 +415,7 @@ export class MyMap extends LitElement {
render() {
return html`<script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>
<link rel="stylesheet" href="https://cdn.skypack.dev/ol@^6.6.1/ol.css" />
<div id="map" tabindex="0" aria-label=${this.ariaLabel} />`;
<div id="map" tabindex="0" />`;
}

/**
Expand Down

0 comments on commit 69c5cbd

Please sign in to comment.