Skip to content

Commit

Permalink
fix observer error in InfiniteScroll
Browse files Browse the repository at this point in the history
  • Loading branch information
Michał Nykiel committed Aug 5, 2021
1 parent 4229d79 commit 43684ad
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 18 deletions.
2 changes: 1 addition & 1 deletion docs/iframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@
} catch (e) {
// eslint-disable-next-line no-console
console.warn('unable to connect to parent frame for connecting dev tools');
}</script></head><body><div class="sb-nopreview sb-wrapper"><div class="sb-nopreview_main"><h1 class="sb-nopreview_heading sb-heading">No Preview</h1><p>Sorry, but you either have no stories or none are selected somehow.</p><ul><li>Please check the Storybook config.</li><li>Try reloading the page.</li></ul><p>If the problem persists, check the browser console, or the terminal you've run Storybook from.</p></div></div><div class="sb-errordisplay sb-wrapper"><div id="error-message" class="sb-heading"></div><pre class="sb-errordisplay_code"><code id="error-stack"></code></pre></div><div id="root"></div><script src="runtime~main.aa14d85723c19e18efb6.bundle.js"></script><script src="vendors~main.aa14d85723c19e18efb6.bundle.js"></script><script src="main.aa14d85723c19e18efb6.bundle.js"></script></body></html>
}</script></head><body><div class="sb-nopreview sb-wrapper"><div class="sb-nopreview_main"><h1 class="sb-nopreview_heading sb-heading">No Preview</h1><p>Sorry, but you either have no stories or none are selected somehow.</p><ul><li>Please check the Storybook config.</li><li>Try reloading the page.</li></ul><p>If the problem persists, check the browser console, or the terminal you've run Storybook from.</p></div></div><div class="sb-errordisplay sb-wrapper"><div id="error-message" class="sb-heading"></div><pre class="sb-errordisplay_code"><code id="error-stack"></code></pre></div><div id="root"></div><script src="runtime~main.70905a405d5a59bad226.bundle.js"></script><script src="vendors~main.70905a405d5a59bad226.bundle.js"></script><script src="main.70905a405d5a59bad226.bundle.js"></script></body></html>
2 changes: 2 additions & 0 deletions docs/main.70905a405d5a59bad226.bundle.js

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions docs/main.aa14d85723c19e18efb6.bundle.js

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions src/components/Form/TextField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,11 @@ input:-moz-placeholder {
.input-wrapper[disabled] {
pointer-events: none;
background-color: #F4F5F7;
color: #A5ADBA;
}
.input-wrapper[disabled] input::placeholder {
color: #A5ADBA;
}
.input-wrapper:hover {
Expand Down
Loading

0 comments on commit 43684ad

Please sign in to comment.