WAIQWatch plugin improvements

Summary:
Improving usability of the WAIQWatch plugin.
Also fixing a bug in `MasterDetail`, which didn't use `sidebarSize` as `height` when detail panel is shown at the bottom.
iOS companion diff here: D28756787

Reviewed By: tomw

Differential Revision: D28751609

fbshipit-source-id: ba27ae7ce3596179752c963dba1bf4b994767c2a
This commit is contained in:
Luciano Kenji Sugiura
2021-06-02 07:37:41 -07:00
committed by Facebook GitHub Bot
parent 1aa20c6237
commit a00f0ce13a

View File

@@ -238,7 +238,7 @@ export function MasterDetail<T extends object>({
);
case 'bottom':
return (
<Layout.Bottom resizable width={sidebarSize}>
<Layout.Bottom resizable height={sidebarSize}>
{table}
{sidebar}
</Layout.Bottom>