Fixing bug with 'logs' and 'exec' paths (missing shebangs)

This commit is contained in:
Eric Herbrandson
2019-05-19 19:37:29 -05:00
parent 893ad958b3
commit 6218eb3db7
+2 -2
View File
@@ -45,12 +45,12 @@ export default class Pod extends Base {
<div id='content'>
<ItemHeader title={['Pod', namespace, name]} ready={!!item}>
<>
<a title='Logs' className='button_headerAction' href={`pod/${namespace}/${name}/logs`}>
<a title='Logs' className='button_headerAction' href={`#!pod/${namespace}/${name}/logs`}>
<LogsSvg />
<span className='button_label'>Logs</span>
</a>
<a title='Exec' className='button_headerAction' href={`pod/${namespace}/${name}/exec`}>
<a title='Exec' className='button_headerAction' href={`#!pod/${namespace}/${name}/exec`}>
<ExecSvg />
<span className='button_label'>Exec</span>
</a>