Skip to content

Commit 24e2bfa

Browse files
committed
Fix mobile event view
1 parent 81ff855 commit 24e2bfa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

components/modules/tx/TxOverview.vue

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -287,8 +287,9 @@ const handleViewRawTransaction = () => {
287287
<Flex v-if="activeTab === 'messages'" :class="$style.inner">
288288
<MessagesTable :messages="messages" />
289289
</Flex>
290-
<Events v-else-if="activeTab === 'events'" :tx="tx">
291-
</Events>
290+
<Flex v-if="activeTab === 'events'" :class="$style.inner">
291+
<Events :tx="tx" />
292+
</Flex>
292293
</Flex>
293294
</Flex>
294295
</Flex>
@@ -356,7 +357,7 @@ const handleViewRawTransaction = () => {
356357
}
357358
358359
.events_wrapper {
359-
min-width: 0;
360+
min-width: 384px;
360361
}
361362
362363
.tabs_wrapper {

components/shared/tables/Events.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,6 @@ watch(
498498
<style module>
499499
.data {
500500
min-width: 100%;
501-
width: 0;
502501
height: 100%;
503502
504503
overflow-x: auto;

0 commit comments

Comments
 (0)