diff --git a/routes/_components/ExternalLink.html b/routes/_components/ExternalLink.html index a2d5954..ae27cd2 100644 --- a/routes/_components/ExternalLink.html +++ b/routes/_components/ExternalLink.html @@ -1,7 +1,7 @@ {{#if showIcon}} @@ -26,7 +26,10 @@ \ No newline at end of file diff --git a/routes/_components/PlayVideoIcon.html b/routes/_components/PlayVideoIcon.html index eaede0d..302224c 100644 --- a/routes/_components/PlayVideoIcon.html +++ b/routes/_components/PlayVideoIcon.html @@ -23,4 +23,11 @@ border-radius: 100%; background: var(--mask-opaque-bg); } - \ No newline at end of file + + \ No newline at end of file diff --git a/routes/_components/community/PageListItem.html b/routes/_components/community/PageListItem.html index bce969f..6cd8545 100644 --- a/routes/_components/community/PageListItem.html +++ b/routes/_components/community/PageListItem.html @@ -69,6 +69,9 @@ export default { store: () => store, + data: () => ({ + pinnable: false + }), components: { IconButton }, diff --git a/routes/_components/dialog/components/ModalDialog.html b/routes/_components/dialog/components/ModalDialog.html index 4570dc5..a23f195 100644 --- a/routes/_components/dialog/components/ModalDialog.html +++ b/routes/_components/dialog/components/ModalDialog.html @@ -141,7 +141,10 @@ }, data: () => ({ // don't animate if we're showing a modal dialog on top of another modal dialog. it looks ugly - shouldAnimate: !process.browser || document.getElementsByClassName('modal-dialog').length < 2 + shouldAnimate: !process.browser || document.getElementsByClassName('modal-dialog').length < 2, + fadedIn: false, + muted: false, + className: void 0 }), computed: { backdropClass: (fadedIn, shouldAnimate) => { diff --git a/routes/_components/profile/AccountProfileFollow.html b/routes/_components/profile/AccountProfileFollow.html index f4ac266..c7181db 100644 --- a/routes/_components/profile/AccountProfileFollow.html +++ b/routes/_components/profile/AccountProfileFollow.html @@ -53,6 +53,9 @@ } }, store: () => store, + data: () => ({ + overrideFollowing: void 0 + }), computed: { accountId: (account) => account.id, following: (relationship, overrideFollowing) => { diff --git a/routes/_components/search/AccountSearchResult.html b/routes/_components/search/AccountSearchResult.html index dd5a1d6..72b435c 100644 --- a/routes/_components/search/AccountSearchResult.html +++ b/routes/_components/search/AccountSearchResult.html @@ -73,11 +73,9 @@ import IconButton from '../IconButton.html' export default { - components: { - Avatar, - SearchResult, - IconButton - }, + data: () => ({ + actions: void 0 + }), methods: { onButtonClick (event, action, accountId) { event.preventDefault() @@ -87,6 +85,11 @@ accountId }) } + }, + components: { + Avatar, + SearchResult, + IconButton } } \ No newline at end of file diff --git a/routes/_components/settings/SettingsList.html b/routes/_components/settings/SettingsList.html index 08a4625..4cca62f 100644 --- a/routes/_components/settings/SettingsList.html +++ b/routes/_components/settings/SettingsList.html @@ -25,4 +25,11 @@ margin: 20px 0; } } - \ No newline at end of file + + \ No newline at end of file diff --git a/routes/_components/settings/SettingsListItem.html b/routes/_components/settings/SettingsListItem.html index 1493ada..0c55157 100644 --- a/routes/_components/settings/SettingsListItem.html +++ b/routes/_components/settings/SettingsListItem.html @@ -5,15 +5,9 @@ {{/if}} - {{#if ariaLabel}} - + {{label}} - {{else}} - - {{label}} - - {{/if}} \ No newline at end of file + + \ No newline at end of file