Espaçamento vertical em pacote tabular hiperref

Espaçamento vertical em pacote tabular hiperref

Estou compilando este código:

\documentclass{article}
\usepackage{hyperref}

\newcounter{MS} %\renewcommand*{\theMS}{MS\arabic{MS}} % milestones

\begin{document}

\begin{tabular}{p{2cm}|l}
No. & Title \\
\refstepcounter{MS} \theMS \label{MS1} & this line takes too much vertical space  
\\
-- & this one is OK  
\\
\refstepcounter{MS} \theMS \label{MS2} & this line takes too much vertical space
\\
\end{tabular}

Reference to the first row: \ref{MS1}.
I need package hyperref for \url{url.com} 
\end{document}

Recebo uma tabela que usa muito espaço vertical nas linhas em que tenho o contador de passos:

insira a descrição da imagem aqui

Alguém pode aconselhar como se livrar disso? Se eu remover o pacote, hyperrefele funcionará bem, mas preciso desse pacote para outros fins no meu documento.

informação relacionada