From 42b67b6a5fc5e5eda6bf98929946d2161c4d4cfb Mon Sep 17 00:00:00 2001 From: Jeremy Davis Date: Mon, 3 Jan 2022 10:39:55 +0100 Subject: [PATCH] [NO-JIRA] Better SQ-SL icon --- server/sonar-web/public/images/sq-sl.png | Bin 2704 -> 0 bytes server/sonar-web/public/images/sq-sl.svg | 1 + .../PromotionNotification.tsx | 2 +- .../PromotionNotification-test.tsx.snap | 3 ++- 4 files changed, 4 insertions(+), 2 deletions(-) delete mode 100644 server/sonar-web/public/images/sq-sl.png create mode 100644 server/sonar-web/public/images/sq-sl.svg diff --git a/server/sonar-web/public/images/sq-sl.png b/server/sonar-web/public/images/sq-sl.png deleted file mode 100644 index af6b984afea0b69bb9487c61c9441c18de7298ea..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2704 zcmV;B3UBp^P)0zqfioAUNtdIG>^#`O?&`GZDK{J@fA(m#8{_eh_xnZYp1c+ zgz~c5(I}$UF+)u|MPs8Pi}*mn0d>Jwji{g^xchzg|0pOf*K#p@D3+ZXPx-bA z`XQ6kZ>$8ifQkV`b)8=Cvv}*=uuG~wapN9edDV9gXY3aS;*8BH)-O6rsJA9zDI)L5 zK>mPgEeu&8k?TX%4r+dcuG(^!o?V$+wRJwErb<T|DdPHCpy4PCL>(MMz*pd=k5^*|m66Z+9 zuz@_XDn7kZc}T6i;bMug4y`9pgTw z*=b@cN!w^Lx~9J2>f2w;{>c?p7oSlyoq+;w`w`1!ptG!xWNuUKPi^4M1*Sp7>#El!hR9$XLbQUmNNn!mgKHD}#$u?C*rPIW4 z);Z+Z=DIqCkiyQSkqw)Yho%6?>f5;U zOxZzWN#}s$RGE$>#=Y8h38DJyy^hks?Huj=<5bvMYuhD+^5zYqV=topLU8*VB7EpC4O!G`B5#trFTZAiS?hgMX36 zSeIU8*Xa%PU9b8}YlmLAP}f@DeL>;jf-8^0t8P1#6PXofKbFQ6#f}oPMMsx>RIFhE|byvu_@#pJqg!Wp7Sct`nY>@Es9nFI!EQJQpYWdR7!PB)VnW&0y;j z(u*TZY%H<==2e#b6FLbR=!?ihuE{`2!I{t=LfFeRf@0nHx{ER+RZWggg4JGrkV043 zNC;j!MGGyoMTjx+OcOP%zv=sxy0Zm77I5g{C+=7fZGnM)%?D@xh!I+mIU+2zncf2P z;Nbiw9K!%-kg|*P8&3P+PooC9m!hnlpylm6JS+3#Pul)`@!GAJIeQk!+3> zLbweX5=?CpA~vpEC=EKZhAfsmkr!Q6w%y-XY$K&MA~II(O?Bo+7RH<`J3<}SQu%r6 z;%7)>SyV;EMS2*O5sD;jkE`5%6ouZ~=^#%*C`b9jTedX3(k3B^;Er*uUN6=dT%@Q% z#Ia)zp*hA7!8uGiUmUq}r|xQWs&p9WQK(cs0f4*ADhMuiB z<0U0!w|Nh@EzN;dEjZ*(6qv(OI0IKIQU@{eNqfmo=tR)o_BmZt0=Smltmz+f{``&G z>+cSkCfw5!OeiNnC*nY8Xg_r2{z1*2!scXJBoud|p}mA+8VBb#7dHlz zi_Bq5;5)z;64Hy#*V{>(I)fuhw(wqU?|B|V;h^IJt860mn?iHg?>+I<*TG?CMDP8y zFg9*83_pymJeGH__N^LFD=im1hi)xRt#g?ZKZrR~b_CkM;h>;C4czw)2K*f=4pcG; zxXyVUXFgqh{2F*dNMUc#;Ncn<>&Z_prSukYT{6t2gzg57IrduZ_FEqslm`og1_d)= z8cl&oB9YZyN9)pB;i#F}(#+}*A%%T?LwoWbUKyOpcv`J*53@R&RM77nrN4ah$q*&`x+XoeRuQ z1T*H0qxl<4J_=_H`_iKu6sEIOE=JA^M1b$^n4%&lbfX(xjBf$bZU!6f?NU?#0000< KMNUMnLSTX_bPq`Y diff --git a/server/sonar-web/public/images/sq-sl.svg b/server/sonar-web/public/images/sq-sl.svg new file mode 100644 index 00000000000..76860987bdd --- /dev/null +++ b/server/sonar-web/public/images/sq-sl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/server/sonar-web/src/main/js/app/components/promotion-notification/PromotionNotification.tsx b/server/sonar-web/src/main/js/app/components/promotion-notification/PromotionNotification.tsx index 471e610c44a..5390e76c6db 100644 --- a/server/sonar-web/src/main/js/app/components/promotion-notification/PromotionNotification.tsx +++ b/server/sonar-web/src/main/js/app/components/promotion-notification/PromotionNotification.tsx @@ -48,7 +48,7 @@ export function PromotionNotification(props: PromotionNotificationProps) { return (
- SonarQube + SonarLint + SonarQube + SonarLint
diff --git a/server/sonar-web/src/main/js/app/components/promotion-notification/__tests__/__snapshots__/PromotionNotification-test.tsx.snap b/server/sonar-web/src/main/js/app/components/promotion-notification/__tests__/__snapshots__/PromotionNotification-test.tsx.snap index d2daa0ec162..3463c59ede4 100644 --- a/server/sonar-web/src/main/js/app/components/promotion-notification/__tests__/__snapshots__/PromotionNotification-test.tsx.snap +++ b/server/sonar-web/src/main/js/app/components/promotion-notification/__tests__/__snapshots__/PromotionNotification-test.tsx.snap @@ -13,7 +13,8 @@ exports[`should render correctly: loggedIn 1`] = ` > SonarQube + SonarLint