Minor change.

This commit is contained in:
Daniel 2022-06-10 15:53:19 +04:30
parent d9df6d4f29
commit c5bafc86c4
2 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,7 @@ const List = ({data, tags, reFetch, SetLoader, lightMode}) => {
{data.map((e, i, array) => { {data.map((e, i, array) => {
try { try {
const url = new URL(e.link); const url = new URL(e.link);
const favicon = 'http://www.google.com/s2/favicons?domain=' + url.hostname; const favicon = 'https://www.google.com/s2/favicons?domain=' + url.hostname;
return (<LazyLoad key={i} height={200} offset={200}> return (<LazyLoad key={i} height={200} offset={200}>
<div className="list-row"> <div className="list-row">
<div className="img-content-grp"> <div className="img-content-grp">

View File

@ -7,6 +7,7 @@ export default function TagSelection({setTags, tags, tag=[], lightMode}) {
...provided, ...provided,
textShadow: 'none', textShadow: 'none',
}), }),
placeholder: (provided) => ({ placeholder: (provided) => ({
...provided, ...provided,
color: '#a9a9a9', color: '#a9a9a9',