Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
fix: silence some dev warnings (#635)
Browse files Browse the repository at this point in the history
  • Loading branch information
marionebl authored and Palmaswell committed Oct 11, 2018
1 parent 4c29da3 commit a7e70af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/icons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const icons: { readonly [key: string]: JSX.Element[][] | JSX.Element[] } = {
export const Images: { readonly [key: string]: JSX.Element[][] | JSX.Element[] } = {
EmptyElements: [
[
<svg width="66" height="65">
<svg width="66" height="65" key="EmptyElements">
<defs>
<rect id="b" width="60" height="22" rx="3" />
<filter
Expand All @@ -113,7 +113,7 @@ export const Images: { readonly [key: string]: JSX.Element[][] | JSX.Element[] }
/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<g fill="none" fillRule="evenodd">
<path
d="M37.44.36l-8.43 5.48 7.76 4.56.67-10.04zm-5.5 32.6c-1.74-7.89-1.05-17.85 1.67-25.1l-.93-.35c-2.8 7.43-3.5 17.6-1.7 25.67l.97-.21z"
fill="#000"
Expand Down
1 change: 1 addition & 0 deletions src/model/element-action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ export class ElementAction {
// tslint:disable-next-line:no-any
event: any;
}): string | undefined {
console.log(event);
switch (this.payloadType) {
case Types.ElementActionPayloadType.EventPayload: {
switch (this.getPayload()) {
Expand Down

0 comments on commit a7e70af

Please sign in to comment.