fix(driver-route): refs #6684 manage word overflow with wordBreak #1957

Merged
pablone merged 6 commits from 6684-driverRouteHotfix into master 2024-01-31 13:18:06 +00:00
3 changed files with 6 additions and 3 deletions
Showing only changes of commit 4fc71b9798 - Show all commits

View File

@ -47,6 +47,9 @@ section.text-area {
padding-right: 1em;
background-color: #e5e5e5;
}
.text-area > p {
word-break: break-all;
}
.route-block {
margin-bottom: 100px;

View File

@ -129,7 +129,7 @@
</tbody>
</table>
<div v-if="ticket.description" class="text-area">
pablone marked this conversation as resolved
Review

Si no se usa la clase borrarla

Si no se usa la clase borrarla
<p style="word-break: break-all;">{{ticket.description}}</p>
<p>{{ticket.description}}</p>
</div>
</div>
</div>

View File

@ -5,12 +5,12 @@ module.exports = {
mixins: [vnReport],
async serverPrefetch() {
let ids = this.id;
console.log(typeof ids);
const hasMultipleRoutes = String(this.id).includes(',');
if (hasMultipleRoutes)
ids = this.id.split(',');
const routes = await this.rawSqlFromDef('routes', [ids]);
const routes = await this.rawSqlFromDef('routes', +[ids]);
const tickets = await this.rawSqlFromDef('tickets', [ids, ids]);
const map = new Map();