From c1e605060d5b7c73015a9e3c1c03dcc55b066ea3 Mon Sep 17 00:00:00 2001 From: Collin Barrett Date: Sat, 15 Sep 2018 17:07:39 -0500 Subject: [PATCH] add DNS66 icon ref #470 --- .../ClientApp/imgs/software/4-DNS66.png | Bin 0 -> 851 bytes .../home/components/listsTable/SoftwareIcon.tsx | 4 +++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 src/FilterLists.Web/ClientApp/imgs/software/4-DNS66.png diff --git a/src/FilterLists.Web/ClientApp/imgs/software/4-DNS66.png b/src/FilterLists.Web/ClientApp/imgs/software/4-DNS66.png new file mode 100644 index 0000000000000000000000000000000000000000..a32dc2c2f3c759927816550cd39690ee71e80721 GIT binary patch literal 851 zcmeAS@N?(olHy`uVBq!ia0vp^A|TAc3?z4jzqMyzU|b&H6XNQVS;#Q0gJF6nh@9CC zB7q19APgWmwVh!~8$*8+LwqPhZ6QNfEyJW11~Ws32~7;){vcV9UND*t*4tdp&{W9~ z;=|Bd$>3ze5a7wsR>?5AmBG~xWM*|f15kmdBSTF-gQFGHaG-2oBS^NPgrO>zAvuB} zDT1M=9waic1!NJB0aOpPD>@Kl6i_h`0Too{GIZ2{oClNwayzOSGU7mNpn9OCKyq>$ zNEYILpiw{(ARFj@AOoZflmhY`D|Mwvt)+V`lZUtX7kLOsJUV;^Q_+3J)8Zu zt!19w%QCx9V8LYexf8Tj&U4z61ko5en-pJVQX=slZP`7uiZBPFOL$S;`T zkKRM(iC5STEPL|z&r|EZ(;wwu*mO`tZ;F*RqL8b#`#FXm-n@T%+!TYT}^si_^)R|cKv=t$uT z4Lh^xs)+yGiTn&2*8_ug1u+a_YJo> zqm<-P9oIT%{_Fn^f0f<-{K>hmt|kqVzY1IB*Ej8+r~Cio%eSAGyZnt<_Wr@@*N z@2*tnN_z2lE}Nmf=H9#PHSX`GZsnc-{nN|Vs$&MGjy;0@J%;nrk4StiP2OW%8x*a7 zA!K^i*Ru?(yuO@Vwtfv`Lz9#9A)d;k7hj)R)vM!mCL&P8dW!K(-LlnJ^9*P2IP&#D gPTw`L_P6u@F?1^>C_b_&i~(f?Pgg&ebxsLQ0Nk8urT_o{ literal 0 HcmV?d00001 diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/SoftwareIcon.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/SoftwareIcon.tsx index 06f219a53..b097bb0c5 100644 --- a/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/SoftwareIcon.tsx +++ b/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/SoftwareIcon.tsx @@ -2,6 +2,7 @@ import * as React from "react"; import img1 from "../../../../imgs/software/1-uBlock-Origin.svg"; import img2 from "../../../../imgs/software/2-Adblock-Plus.svg"; import img3 from "../../../../imgs/software/3-AdGuard.png"; +import img4 from "../../../../imgs/software/4-DNS66.png"; interface IProps { id: number; @@ -24,5 +25,6 @@ interface IIcon { const icons: { [id: number]: IIcon; } = { 1: { image: img1, imageTitle: "uBlock Origin" }, 2: { image: img2, imageTitle: "Adblock Plus" }, - 3: { image: img3, imageTitle: "AdGuard" } + 3: { image: img3, imageTitle: "AdGuard" }, + 4: { image: img4, imageTitle: "DNS66" } }; \ No newline at end of file