We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 870d5a1 commit 40a39bdCopy full SHA for 40a39bd
frontend/src/components/Omnibox.tsx
@@ -152,13 +152,12 @@ export const UrlInput: Component<
152
this.value = this.tabUrl.href;
153
this.input.focus();
154
this.input.select();
155
+
156
+ this.input.scrollLeft = 0;
157
};
158
159
this.selectContent.listen(() => {
- this.active = true;
160
activate();
-
161
- this.input.select();
162
});
163
164
return (
@@ -342,6 +341,9 @@ UrlInput.style = css`
342
341
343
height: 100%;
344
width: 100%;
345
+ text-wrap: nowrap;
346
+ overflow: hidden;
347
}
348
.inactiveurl {
349
display: flex;
0 commit comments