Vanessa 1 год назад
Родитель
Сommit
7859ca7c3a
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      app/src/protyle/render/av/row.ts

+ 1 - 1
app/src/protyle/render/av/row.ts

@@ -109,7 +109,7 @@ export const insertAttrViewBlockAnimation = (protyle: IProtyle, blockElement: El
     }
     previousElement.querySelectorAll(".av__cell").forEach((item: HTMLElement, index) => {
         colHTML += `<div class="av__cell" data-col-id="${item.dataset.colId}" 
-style="width: ${item.style.width};text-align: ${item.style.textAlign}" 
+style="width: ${item.style.width};${item.dataset.dtype === "number" ? "text-align: right;" : ""}" 
 ${(item.getAttribute("data-block-id") || item.dataset.dtype === "block") ? ' data-detached="true"' : ""}><span class="${avId ? "av__celltext" : "av__pulse"}"></span></div>`;
         if (pinIndex === index) {
             colHTML += "</div>";