You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bootstrap4 modals have a minor bug, which is still present in the current version of the repo. Namely, both model/modals/edit.html and model/modals/create.html contain the following code in header_text block:
<h5class="modal-title">{{ … }}</h5>
Meanwhile, model/modals/details.html contains the following instead:
<h3>{{ … }}</h3>
…Which as you might guess results in different styling:
The text was updated successfully, but these errors were encountered:
Bootstrap4 modals have a minor bug, which is still present in the current version of the repo. Namely, both
model/modals/edit.html
andmodel/modals/create.html
contain the following code inheader_text
block:Meanwhile,
model/modals/details.html
contains the following instead:…Which as you might guess results in different styling:
![edit header](https://private-user-images.githubusercontent.com/16271003/361253153-10ffa8ff-8004-414b-b2dd-0c7fa117e55f.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzg5Nzg2OTEsIm5iZiI6MTczODk3ODM5MSwicGF0aCI6Ii8xNjI3MTAwMy8zNjEyNTMxNTMtMTBmZmE4ZmYtODAwNC00MTRiLWIyZGQtMGM3ZmExMTdlNTVmLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDglMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA4VDAxMzMxMVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWM4ZTk2NDAzYzgxYmM1ZDZlMDNiOWU1MTlkNzU2ZTMzMjE5OGMxMTI2YmVlNThiMzRhZmVhMDI5NWNkYzNjNmMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.zAAmbDY49AT9hxw9MnKwLRiy3vN_K4SpcK27lu168ZQ)
![view header](https://private-user-images.githubusercontent.com/16271003/361253157-68e33366-3919-4688-868c-be6242e9e0d5.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzg5Nzg2OTEsIm5iZiI6MTczODk3ODM5MSwicGF0aCI6Ii8xNjI3MTAwMy8zNjEyNTMxNTctNjhlMzMzNjYtMzkxOS00Njg4LTg2OGMtYmU2MjQyZTllMGQ1LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDglMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA4VDAxMzMxMVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWZiY2Q0YWI3NjYwMjVjNDM0NjY3OWZlNDUxZTEzNWE1N2ViOWQ4MjI1OWI4NjJmZTc2NmIxNTZmZjFhNTc4M2QmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.QnqGhiyo9nR8BaGoa8xqATEwNM_YCwC2ZsN153EvYKQ)
The text was updated successfully, but these errors were encountered: