File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -241,21 +241,6 @@ export abstract class GenericEditableConfigList<
241241 return (
242242 < li key = { index } >
243243 < div className = "item-header" >
244- < a
245- className = "btn small edit-item"
246- href = { this . urlBase + "edit/" + item [ this . identifierKey ] }
247- >
248- { this . canEdit ( item ) ? (
249- < span >
250- Edit < PencilIcon />
251- </ span >
252- ) : (
253- < span >
254- View < VisibleIcon />
255- </ span >
256- ) }
257- </ a >
258-
259244 < h3 >
260245 { libraryCount !== null && (
261246 < button
@@ -288,6 +273,21 @@ export abstract class GenericEditableConfigList<
288273 </ span >
289274 </ h3 >
290275
276+ < a
277+ className = "btn small edit-item"
278+ href = { this . urlBase + "edit/" + item [ this . identifierKey ] }
279+ >
280+ { this . canEdit ( item ) ? (
281+ < span >
282+ Edit < PencilIcon />
283+ </ span >
284+ ) : (
285+ < span >
286+ View < VisibleIcon />
287+ </ span >
288+ ) }
289+ </ a >
290+
291291 { this . canDelete ( ) && (
292292 < Button
293293 className = "danger delete-item small"
You can’t perform that action at this time.
0 commit comments