Skip to content

Commit 7336eb3

Browse files
updates
1 parent 00e9136 commit 7336eb3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/builder.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ const Builder = () => {
9999
100100
const originalFetch = window.fetch;
101101
window.fetch = function(input, init) {
102+
console.log(input);
102103
let url;
103104
if (typeof input === 'string') {
104105
url = input;

lib/ui/select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const GoogleFonts_Icons_ArrowDropUp = (props) => (
3131
<path d="M328-400q-9 0-14.5-6t-5.5-14q0-2 6-14l145-145q5-5 10-7t11-2q6 0 11 2t10 7l145 145q3 3 4.5 6.5t1.5 7.5q0 8-5.5 14t-14.5 6H328Z" />
3232
</svg>
3333
);
34-
const Img = ({ item, className }) => (<img src={item[1]} title={item[0]} alt="" className={'fi r2px ow' + className ? ' '+className : ''} />);
34+
const Img = ({ item, className }) => (<img src={item[1]} title={item[0]} alt="" className={'fi r2px ow' + (className ? ' '+className : '')} />);
3535

3636
let selectID = 0;
3737
const ArrowDropUp_Translate = ['none', '0px -1px'];

0 commit comments

Comments
 (0)