mirror of
https://github.com/balzack/databag.git
synced 2025-02-11 19:19: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,
|
||||
nil, nil, APPTokenAgent, set.B.Token, cards, &hdr))
|
||||
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
|
||||
|
||||
// set card notes
|
||||
|
@ -328,7 +328,7 @@ export function Session() {
|
||||
</div>
|
||||
</RingingWrapper>
|
||||
</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>
|
||||
{ !state.remoteVideo && (
|
||||
<Logo url={state.callLogo} width={256} height={256} radius={8} />
|
||||
|
Loading…
Reference in New Issue
Block a user