Skip to content

Commit

Permalink
fix(ui): Socket Panel > address bar expands as you type and increases…
Browse files Browse the repository at this point in the history
… the client container width
  • Loading branch information
flawiddsouza committed Mar 6, 2024
1 parent f45899a commit c98a1f2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/ui/src/components/SocketPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
class="client"
v-if="!client.visibility || client.visibility === 'shown'"
>
<div class="d-f flex-ai-c p-0_5rem bc-primary">
<div class="d-f flex-ai-c p-0_5rem bc-primary" style="min-width: 0;">
<select
v-model="client.type"
class="h-100p"
Expand All @@ -45,7 +45,7 @@
:env-variables="activeTabEnvironmentResolved"
:input-text-compatible="true"
:disabled="isClientConnected(client)"
class="input ml-0_5rem w-100p"
class="input ml-0_5rem w-100p o-a"
/>
<div class="ml-0_5rem">
<button
Expand Down Expand Up @@ -377,7 +377,7 @@ async function connect(client: Client) {
addClientMessage(client, {
timestamp: new Date().getTime(),
message: `Disconnected from ${client.url}`,
message: `Disconnected from ${clientUrlWithEnvironmentVariablesSubtituted}`,
type: 'INFO'
})
})
Expand Down Expand Up @@ -419,7 +419,7 @@ async function connect(client: Client) {
addClientMessage(client, {
timestamp: new Date().getTime(),
message: `Disconnected from ${client.url}`,
message: `Disconnected from ${clientUrlWithEnvironmentVariablesSubtituted}`,
type: 'INFO'
})
})
Expand Down

1 comment on commit c98a1f2

@flawiddsouza
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Issue can be reproduced using this export:
Restfox_2024-03-06.json

Before:
before

After:
after

Please sign in to comment.