mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 03:29:16 +00:00
fix padding issue on call modal
This commit is contained in:
parent
de10c6fd64
commit
bcff425e60
@ -59,6 +59,13 @@ func TestContactSync(t *testing.T) {
|
|||||||
assert.NoError(t, APITestMsg(GetCards, "GET", "/contact/cards?revision="+cardRevision,
|
assert.NoError(t, APITestMsg(GetCards, "GET", "/contact/cards?revision="+cardRevision,
|
||||||
nil, nil, APPTokenAgent, set.B.Token, cards, &hdr))
|
nil, nil, APPTokenAgent, set.B.Token, cards, &hdr))
|
||||||
cardRevision = hdr["Card-Revision"][0]
|
cardRevision = hdr["Card-Revision"][0]
|
||||||
|
if len(*cards) != 0 {
|
||||||
|
PrintMsg("TEST WILL FAIL");
|
||||||
|
PrintMsg(*cards);
|
||||||
|
PrintMsg("****");
|
||||||
|
PrintMsg(set);
|
||||||
|
PrintMsg("----");
|
||||||
|
}
|
||||||
assert.Equal(t, 0, len(*cards)) // ?? actual 1
|
assert.Equal(t, 0, len(*cards)) // ?? actual 1
|
||||||
|
|
||||||
// set card notes
|
// set card notes
|
||||||
|
@ -328,7 +328,7 @@ export function Session() {
|
|||||||
</div>
|
</div>
|
||||||
</RingingWrapper>
|
</RingingWrapper>
|
||||||
</Modal>
|
</Modal>
|
||||||
<Modal centered visible={state.callStatus} footer={null} closable={false} width={callModal.width} height={callModal.height} bodyStyle={{ paddingBottom: 0, paddingTop: 6, paddingLeft: 6, paddingRight: 6 }}>
|
<Modal centered visible={state.callStatus} footer={null} closable={false} width={callModal.width} height={callModal.height} bodyStyle={{ padding: 6 }}>
|
||||||
<CallingWrapper>
|
<CallingWrapper>
|
||||||
{ !state.remoteVideo && (
|
{ !state.remoteVideo && (
|
||||||
<Logo url={state.callLogo} width={256} height={256} radius={8} />
|
<Logo url={state.callLogo} width={256} height={256} radius={8} />
|
||||||
|
Loading…
Reference in New Issue
Block a user