FirebaseExtended / FirebaseExtended/action-hosting-deploy

Long service account email prevents showing the last 2 columns in Firebase Console

Open
#208 0 comments 0 reactions 0 assignees View on GitHub
bug
Dominant language
TypeScript
Stars
809
Forks
232
PR merge metrics
No merged PRs in 30d

Description

The service account email used for the deployments is too long, preventing the final column in console from being visible.

This is probably outside the scope of this project, but opening the issue here since the issue is triggered due to the usage of this action, and I have not been able to find a point of contact with the Firebase team.

Could you forward this issue along, as it might effect other people using this action?

Here is a workaround that limits the width of the third column:

```
const element = document.createElement('style')
document.head.appendChild(element);
element.sheet.insertRule(`.hist-row .h5g-hist-details .h5g-hist-details-email {width: 100px;}`, 0);
```

This way, the final column which has the three dots to show Restore button becomes visible again.

Before:

Screen Shot 2022-05-20 at 18 18 50

After:

Screen Shot 2022-05-20 at 18 17 33

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.