Fixing webcam flip (#774)

* frontend fixes

* format fix

Co-authored-by: Ali Abid <aliabid94@gmail.com>
This commit is contained in:
aliabid94 2022-03-07 22:03:46 -06:00 committed by GitHub
parent a457f6a446
commit a49ea9ab5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 30 additions and 10 deletions

View File

@ -358,12 +358,12 @@
/>
{/if}
<span
class=" cursor-default w-full"
class="cursor-default w-full"
class:opacity-0={editing === id}
tabindex="-1"
role="button"
>
{value}
{value ?? ""}
</span>
</div>
</td>

View File

@ -0,0 +1,23 @@
<script lang="ts">
export let value: Array<Array<string | number>>;
</script>
<table class="input-dataframe-example">
{#each value.slice(0, 3) as row}
<tr>
{#each row.slice(0, 3) as cell}
<td class="p-2">{cell}</td>
{/each}
{#if row.length > 3}
<td class="p-2">...</td>
{/if}
</tr>
{/each}
{#if value.length > 3}
<tr>
{#each Array(Math.min(4, value[0].length)) as _}
<td class="p-2">...</td>
{/each}
</tr>
{/if}
</table>

View File

@ -1,5 +1,7 @@
import Component from "./DataFrame.svelte";
import ExampleComponent from "./Example.svelte";
export default {
component: Component
component: Component,
example: ExampleComponent
};

View File

@ -85,6 +85,8 @@
{static_src}
/>
<img class="w-full h-full object-contain" src={value} alt="" />
{:else}
<img class="w-full h-full object-contain" src={value} alt="" />
{/if}
</div>

View File

@ -66,10 +66,3 @@
/>
</button>
</div>
<style lang="postcss">
video {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
</style>