NewsPanel: Prevent Date and title collapsing to single row (#40016)

pull/40067/head
Ashley Harrison 4 years ago committed by GitHub
parent 4f2a3f92e4
commit 2f731d42f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      public/app/plugins/panel/news/NewsPanel.tsx
  2. 2
      scripts/ci-check-strict.sh

@ -133,7 +133,10 @@ const getStyles = stylesFactory((theme: GrafanaTheme2) => ({
itemWide: css`
flex-direction: row;
`,
body: css``,
body: css`
display: flex;
flex-direction: column;
`,
socialImage: css`
display: flex;
align-items: center;

@ -3,7 +3,7 @@ set -e
echo -e "Collecting code stats (typescript errors & more)"
ERROR_COUNT_LIMIT=41
ERROR_COUNT_LIMIT=40
ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --strict true | grep -oP 'Found \K(\d+)')"
if [ "$ERROR_COUNT" -gt $ERROR_COUNT_LIMIT ]; then

Loading…
Cancel
Save