fix a couple UI bugs introduced by the XUL changes

This commit is contained in:
mcgreer%netscape.com 2001-03-22 21:46:00 +00:00
Родитель d62b478b91
Коммит 3c27562cb2
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -55,7 +55,7 @@
<tab id="mine_tab" label="&certmgr.tab.mine;" />
<tab id="others_tab" label="&certmgr.tab.others;" />
<tab id="websites_tab" label="&certmgr.tab.websites;" />
<tab id="ca_tab" value="&certmgr.tab.ca;" selected="true"/>
<tab id="ca_tab" label="&certmgr.tab.ca;" selected="true"/>
</tabbox>
<tabpanel flex="1">
<box id="myCerts" flex="1"/>

Просмотреть файл

@ -66,7 +66,7 @@ function AddUsage(usage)
var row = document.createElement("treerow");
var cell = document.createElement("treecell");
cell.setAttribute("class", "propertylist");
cell.setAttribute("value", usage);
cell.setAttribute("label", usage);
row.appendChild(cell);
tree.appendChild(row);
}