@chat21/chat21-ionic 3.0.61 → 3.0.62-rc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# chat21-ionic ver 3.0
|
|
2
2
|
|
|
3
|
+
### 3.0.62-rc2
|
|
4
|
+
- Fixed bug: in the teammate drawer if the full name is too long it overlaps the email
|
|
5
|
+
- Fixed bug: in the teammate drawer if the email is too long it exceeds the width of the drawer
|
|
6
|
+
|
|
7
|
+
### 3.0.62-rc1
|
|
8
|
+
- Change the URL of the environment variable "dashboardUrl" from absolute to relative
|
|
9
|
+
|
|
3
10
|
### 3.0.61
|
|
4
11
|
- Deploys in production
|
|
5
12
|
|
package/package.json
CHANGED
|
@@ -143,6 +143,10 @@ button.user-details-btn-close {
|
|
|
143
143
|
font-family: "Poppins";
|
|
144
144
|
font-weight: 500;
|
|
145
145
|
line-height: 24px;
|
|
146
|
+
white-space: nowrap;
|
|
147
|
+
overflow: hidden;
|
|
148
|
+
text-overflow: ellipsis;
|
|
149
|
+
width: 260px;
|
|
146
150
|
}
|
|
147
151
|
|
|
148
152
|
.user-details-email {
|
|
@@ -156,11 +160,15 @@ button.user-details-btn-close {
|
|
|
156
160
|
.user-details-email > h3 {
|
|
157
161
|
font-size: 14px;
|
|
158
162
|
text-align: center;
|
|
159
|
-
margin-top:
|
|
163
|
+
margin-top: 1px;
|
|
160
164
|
font-family: "Poppins";
|
|
161
165
|
font-weight: 400;
|
|
162
|
-
line-height:
|
|
166
|
+
line-height: 19px;
|
|
167
|
+
white-space: nowrap;
|
|
163
168
|
white-space: nowrap;
|
|
169
|
+
overflow: hidden;
|
|
170
|
+
text-overflow: ellipsis;
|
|
171
|
+
width: 260px;
|
|
164
172
|
}
|
|
165
173
|
|
|
166
174
|
.user-details-role {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"apiUrl": "https://tiledesk-server-pre.herokuapp.com/",
|
|
31
31
|
"baseImageUrl": "https://firebasestorage.googleapis.com/v0/b/",
|
|
32
|
-
"dashboardUrl": "
|
|
32
|
+
"dashboardUrl": "/dashboard/",
|
|
33
33
|
"wsUrl": "wss://tiledesk-server-pre.herokuapp.com/"
|
|
34
34
|
}
|
|
35
35
|
|