diff --git a/shlink-web-component/src/short-urls/helpers/ShortUrlsRowMenu.tsx b/shlink-web-component/src/short-urls/helpers/ShortUrlsRowMenu.tsx index 35273bed..7e4a4cc0 100644 --- a/shlink-web-component/src/short-urls/helpers/ShortUrlsRowMenu.tsx +++ b/shlink-web-component/src/short-urls/helpers/ShortUrlsRowMenu.tsx @@ -26,11 +26,11 @@ export const ShortUrlsRowMenu = ( return ( - + Visit stats - + Edit short URL diff --git a/src/index.scss b/src/index.scss index 3dfcc1b1..9bac305e 100644 --- a/src/index.scss +++ b/src/index.scss @@ -1,7 +1,7 @@ -@import '@shlinkio/shlink-frontend-kit/base'; -@import '@shlinkio/shlink-frontend-kit/index'; -@import '@shlinkio/shlink-web-component/index'; +@import '@shlinkio/shlink-frontend-kit/base'; // Before bootstrap stylesheet. Includes SASS var overrides @import 'node_modules/bootstrap/scss/bootstrap.scss'; +@import '@shlinkio/shlink-frontend-kit/index'; // After bootstrap. Includes CSS overwrites +@import '@shlinkio/shlink-web-component/index'; * { outline: none !important; diff --git a/test/common/services/HttpClient.test.ts b/test/common/services/HttpClient.test.ts index fbab591f..45a38f11 100644 --- a/test/common/services/HttpClient.test.ts +++ b/test/common/services/HttpClient.test.ts @@ -61,7 +61,7 @@ describe('HttpClient', () => { const theError = { error: true, foo: 'bar' }; fetch.mockResolvedValue({ json: () => theError, ok: false }); - await expect(httpClient.fetchJson('')).rejects.toEqual(theError); + await expect(httpClient.fetchEmpty('')).rejects.toEqual(theError); }); }); });