fix padding issue on call modal

This commit is contained in:
Roland Osborne 2023-04-17 10:41:09 -07:00
parent de10c6fd64
commit bcff425e60
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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} />